home *** CD-ROM | disk | FTP | other *** search
- UNIT MOIREGLOBALS;
-
- INTERFACE
-
- USES MacIntf;
-
- CONST
- AppleID = 300;
- FileID = 301;
- EditID = 302;
- PatMenuID = 303;
-
- AboutID = 1000;
-
- UndoItem = 1;
- CutItem = 3;
- CopyItem = 4;
- PasteItem = 5;
- ClearItem = 6;
-
- PatItem = 1;
- StepItem = 2;
- InvertItem = 3;
- FlashItem = 4;
-
- SBarWidth = 16;
- active = 0;
- inactive = 255;
-
- PatternDlgID = 1001;
- StepID = 1002;
-
- blackID = 3;
- dkGrayID = 4;
- grayID = 5;
- ltGrayID = 6;
-
- topLine = 15;
- DflashRate = 8;
-
- VAR
- AppleMenu, FileMenu, EditMenu, PatMenu : MenuHandle;
- Finished, Flashing, flashPhase : boolean;
- theEvent : EventRecord;
- myWindow : WindowPtr;
- LastPoint : point;
- Step : integer;
- CurrentPat, tempPat : integer;
- timeVal, flashVal : longint;
- flashRate : integer;
- FlashControl : ControlHandle;
- MoireRect : rect;
-
- IMPLEMENTATION
-
- END.